mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-25 19:34:45 +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
|
||
|
}
|