(value: any)
| 38 | export const DEFAULT_GIT_IGNORE = '.gitignore'; |
| 39 | |
| 40 | export function isFileReference(value: any): value is FileReference { |
| 41 | return value?.file && typeof value.file === 'string'; |
| 42 | } |
| 43 | |
| 44 | // Input manifest here, we might need to handler other error later on |
| 45 | export function handleCreateSubqueryProjectError(err: Error, pjson: any, rawManifest: any, logger: Pino.Logger): void { |
no outgoing calls
no test coverage detected