UNPKG

344 BTypeScriptView Raw
1import type { Nullable } from '../core.js';
2import type { Reference } from '../references.js';
3
4export interface ElementOperations {
5 setAttribute(
6 name: string,
7 value: Reference,
8 trusting: boolean,
9 namespace: Nullable<string>
10 ): void;
11
12 setStaticAttribute(name: string, value: string, namespace: Nullable<string>): void;
13}