node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

22
server/node_modules/@strapi/utils/dist/yup.d.ts generated vendored Normal file
View File

@@ -0,0 +1,22 @@
import * as yup from 'yup';
export * from 'yup';
export declare const strapiID: () => InstanceType<typeof StrapiIDSchema>;
export declare class StrapiIDSchema extends yup.MixedSchema {
constructor();
_typeCheck(value: unknown): value is string | number;
}
declare module 'yup' {
interface BaseSchema {
isFunction(message?: string): this;
notNil(message?: string): this;
notNull(message?: string): this;
}
interface StringSchema {
isCamelCase(message?: string): this;
isKebabCase(message?: string): this;
}
interface ObjectSchema<TShape> {
onlyContainsFunctions(message?: string): this;
}
}
//# sourceMappingURL=yup.d.ts.map