UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

7 lines (6 loc) 279 B
/** List all files in a given directory return paths relative to the dir_path */ export declare function crawlAsync(params: { dirPath: string; returnedPathsType: "absolute" | "relative to dirPath"; onFileFound: (filePath: string) => Promise<void>; }): Promise<void>;