/** * 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() // expectTypeOf({ x: 1 }).not.toEqualTypeOf() }); });