Outlook_Addin_LLM/node_modules/@fluentui/utilities/lib/assertNever.js

9 lines
246 B
JavaScript

/**
* AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.
*
* @public
*/
export function assertNever(x) {
throw new Error('Unexpected object: ' + x);
}
//# sourceMappingURL=assertNever.js.map