UNPKG

361 BTypeScriptView Raw
1// eslint-disable-next-line node/no-extraneous-import
2import { Reference } from '@glimmer/reference';
3import { Option } from '../core';
4
5export interface ElementOperations {
6 setAttribute(name: string, value: Reference, trusting: boolean, namespace: Option<string>): void;
7
8 setStaticAttribute(name: string, value: string, namespace: Option<string>): void;
9}