frontend/.pnpm-store/v3/files/90/ec24efa05d212a3702c71e8594b4f0a8b92a11657eec882586780405dd5e05fb9ce97d3f9f3eb67b84e3df833a6564f1bf003250f3eac1618901b5d9e835f6

33 lines
1.1 KiB
Plaintext

export declare const invalid_attribute_name_character: RegExp;
export declare function spread(args: any, classes_to_add: any): string;
export declare const escaped: {
'"': string;
"'": string;
'&': string;
'<': string;
'>': string;
};
export declare function escape(html: any): string;
export declare function each(items: any, fn: any): string;
export declare const missing_component: {
$$render: () => string;
};
export declare function validate_component(component: any, name: any): any;
export declare function debug(file: any, line: any, column: any, values: any): string;
export declare function create_ssr_component(fn: any): {
render: (props?: {}, { $$slots, context }?: {
$$slots?: {};
context?: Map<any, any>;
}) => {
html: any;
css: {
code: string;
map: any;
};
head: string;
};
$$render: (result: any, props: any, bindings: any, slots: any, context: any) => any;
};
export declare function add_attribute(name: any, value: any, boolean: any): string;
export declare function add_classes(classes: any): string;