@podlite/schema
Version:
AST tools for Podlite markup language
13 lines (12 loc) • 319 B
TypeScript
export declare type Context = {
config?: any;
};
export interface Attr {
getAllValues: (name: any) => any;
getFirstValue: (name: any) => any;
asHash: () => {};
(): {};
exists(name: string): boolean;
}
export declare const makeAttrs: (node: any, ctx?: Context) => Attr;
export default makeAttrs;