1
一種給定一個模塊是這樣的:生成模塊自身的出口鍵
export const a: string;
export const b: string;
從外面就可以產生這樣的類型"a" | "b"
:
import * as stuff from "./stuff";
type StuffKeys = keyof typeof stuff; // "a" | "b"
但我想生成和出口這種類型從模塊內的。類似於:
export type MyKeys = keyof typeof this;
但這並不奏效。
有沒有辦法做到這一點?