GrauKatze 05f70669c9 Сконфигурирована и подготовлена база для проекта | преди 2 години | |
---|---|---|
.. | ||
README.md | преди 2 години | |
index.d.ts | преди 2 години | |
index.js | преди 2 години | |
index.ts | преди 2 години | |
package.json | преди 2 години |
Helper function for exhaustive checks of discriminated unions in TypeScript.
npm install --save assert-never
import {assertNever} from "assert-never";
type A = {type: 'a'};
type B = {type: 'b'};
type Union = A | B;
function doSomething(arg: Union) {
if (arg.type === 'a') {
return something;
}
if (arg.type === 'b') {
return somethingElse;
}
// TS will error if there are other types in the union
// Will throw an Error when called at runtime. Use `assertNever(arg, true)`
// instead to fail silently.
return assertNever(arg);
}