mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-12-02 22:44:46 +01:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
|
export = isSubdir
|
||
|
|
||
|
declare function isSubdir (parentDir: string, subdir: string): boolean
|
||
|
|
||
|
declare namespace isSubdir {
|
||
|
export function strict (parentDir: string, subdir: string): boolean
|
||
|
}
|