- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
16 lines
301 B
TypeScript
16 lines
301 B
TypeScript
type Promisable<T> = T | Promise<T>;
|
|
|
|
declare namespace escalade {
|
|
export type Callback = (
|
|
directory: string,
|
|
files: string[],
|
|
) => Promisable<string | false | void>;
|
|
}
|
|
|
|
declare function escalade(
|
|
directory: string,
|
|
callback: escalade.Callback,
|
|
): Promise<string | void>;
|
|
|
|
export = escalade;
|