芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@types/invariant/index.d.ts
// Type definitions for invariant 2.2 // Project: https://github.com/zertosh/invariant // Definitions by: MichaelBennett
// dtinth
// Turadg Aleahmad
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare let invariant: invariant.InvariantStatic; export = invariant; export as namespace invariant; declare namespace invariant { interface InvariantStatic { (testValue: false, format: string, ...extra: any[]): never; (testValue: any, format: string, ...extra: any[]): asserts testValue; } }