mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-02-18 09:34:45 +01:00
7 lines
192 B
TypeScript
7 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
|
|
}
|