@glimmer/interfaces
Version:
Common interfaces shared among all @glimmer/\* projects
14 lines (11 loc) • 344 B
TypeScript
import type { Nullable } from '../core.js';
import type { Reference } from '../references.js';
export interface ElementOperations {
setAttribute(
name: string,
value: Reference,
trusting: boolean,
namespace: Nullable<string>
): void;
setStaticAttribute(name: string, value: string, namespace: Nullable<string>): void;
}