Files

29 lines
701 B
TypeScript
Raw Permalink Normal View History

2025-08-15 21:37:29 +08:00
/**
*
*/
export declare const getDynamicClassNames: (value: string) => string[];
/**
*
*/
export declare function getClassNames(code: string): string[];
/**
* class
*/
export declare function getClassContent(code: string): string[];
/**
*
*/
export declare function getNodes(code: string): string[];
/**
* script
*/
export declare function addScriptContent(code: string, content: string): string;
/**
* Tailwind
*/
export declare function isTailwindClass(className: string): boolean;
/**
* interface type
*/
export declare function interfaceToType(code: string): string;