logo

Todash 2.4.0

是一个 类型推导 工具库,旨在帮助你快速方便的编写具备类型推导的 TypeScript 代码。


“Utils” 方法


_.ObjAddStrKeyPrefix<origin, prefix>

给对象的 key(string) 增加 指定前缀


参数


origin (Object): 需要处理的 对象 类型
suffix (string): 需要添加的前缀


返回


obj (Object): key(string) 增加 指定前缀后的对象。


例子


type Origin = {
  test1: string;
  test2: boolean;
  test3: number;
};

// 给对象的增加 'aa' 前缀
type ObjAfterAddStrKeyPrefix = _.ObjAddStrKeyPrefix<Origin, 'aa'>;
// => { aaTest1: string; aaTest2: boolean; aaTest3: number; }