UNPKG

marko

Version:

Optimized runtime for Marko templates.

9 lines (8 loc) 279 B
type Attrs = Record<PropertyKey, unknown>; type AttrTag = Attrs & { [rest]: Attrs[]; }; declare const rest: unique symbol; export declare function attrTag(attrs: Attrs): AttrTag; export declare function attrTags(first: undefined | AttrTag, attrs: Attrs): AttrTag; export {};