UNPKG

contentful-management

Version:
15 lines 441 B
import { describe, expectTypeOf, it } from 'vitest'; describe('OptionalDefaults', () => { it('does not add props', () => { expectTypeOf().toMatchTypeOf(); }); it('adds default props if available', () => { expectTypeOf().toMatchTypeOf(); }); it('handles intersection types', () => { expectTypeOf().toMatchTypeOf(); }); it('handles union with intersection types', () => { expectTypeOf().toMatchTypeOf(); }); });