/** * Custom Element definition * * Used to define a Custom Element * * @alpha */ export interface CustomElementDefinition { tagName: string; attributes: string[]; } /** * Custom Element * * @alpha */ export type CustomElement = Omit & { /** * Record of attributes and values to apply to the node */ attributes: Record; }; //# sourceMappingURL=custom-element.types.d.ts.map