| 1234567891011121314 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- // import { type IPoint } from './IPoint'
- import { describe, test } from 'vitest';
- describe('IPoint', () => {
- test('type', () => {
- // expectTypeOf({ x: 1, y: 1 }).toEqualTypeOf<IPoint>()
- // expectTypeOf({ x: 1 }).not.toEqualTypeOf<IPoint>()
- });
- });
|