IPoint.spec.ts 362 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. // import { type IPoint } from './IPoint'
  6. import { describe, test } from 'vitest';
  7. describe('IPoint', () => {
  8. test('type', () => {
  9. // expectTypeOf({ x: 1, y: 1 }).toEqualTypeOf<IPoint>()
  10. // expectTypeOf({ x: 1 }).not.toEqualTypeOf<IPoint>()
  11. });
  12. });