UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

18 lines (17 loc) 541 B
export declare function getIsPrettierAvailable(): Promise<boolean>; export declare namespace getIsPrettierAvailable { var cache: boolean | undefined; } type PrettierAndConfigHash = { prettier: typeof import("prettier"); configHash: string; }; export declare function getPrettier(): Promise<PrettierAndConfigHash>; export declare namespace getPrettier { var cache: PrettierAndConfigHash | undefined; } export declare function runPrettier(params: { sourceCode: string; filePath: string; }): Promise<string>; export {};