UNPKG

@edflex-tech/keycloakify

Version:

Keycloak theme generator for Reacts app

16 lines (15 loc) 439 B
/// <reference types="node" /> declare type TransformSourceCode = (params: { sourceCode: Buffer; filePath: string; }) => { modifiedSourceCode: Buffer; newFileName?: string; } | undefined; /** Apply a transformation function to every file of directory */ export declare function transformCodebase(params: { srcDirPath: string; destDirPath: string; transformSourceCode?: TransformSourceCode; }): void; export {};