@apptus/esales-api
Version:
Library for making requests to Elevate 4 API v3
15 lines (10 loc) • 362 B
text/typescript
import { describe, it } from '#test';
import type * as m from './general.ts';
const suite = describe('General');
it(suite, 'should have interface propeties for RelatedSearch', () => {
// deno-lint-ignore no-explicit-any
const { q, ...rest }: m.RelatedSearch = {} as any;
(q satisfies string);
// deno-lint-ignore ban-types
(rest satisfies {});
});