@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
10 lines • 366 B
TypeScript
//#region src/shared/utils/invariant.d.ts
declare function invariant(condition: any,
/**
* Can provide a string, or a function that returns a string for cases where
* the message takes a fair amount of effort to compute
*/
message?: string | (() => string)): asserts condition;
//#endregion
export { invariant as default };
//# sourceMappingURL=invariant.d.ts.map