测试一下record
This commit is contained in:
parent
7454b97e65
commit
94cf7bbe65
20
code/ts-practice/src/type.ts
Normal file
20
code/ts-practice/src/type.ts
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-03-09 17:04:12
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /ts-practice/src/type.ts
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
type K = (number | string);
|
||||
type T = string | number | boolean;
|
||||
type R = Record<K, T>;
|
||||
|
||||
const test: R = {
|
||||
x: 2,
|
||||
a: 1,
|
||||
b: true,
|
||||
1: 2,
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user