egg_server/types/sheetProxy.ts
zhaoyingbo 6e65581bbf
All checks were successful
Egg CI/CD / build-image (push) Successful in 32s
Egg CI/CD / deploy (push) Successful in 37s
feat: 接入lint 和 husky
2024-07-25 01:48:22 +00:00

19 lines
385 B
TypeScript

export namespace SheetProxy {
export enum Type {
Insert = "insert",
}
export interface Body {
api_key: string
sheet_token: string
type: "insert"
range: string
values: string[][] // 二维数组
}
// 判断一个值是否是枚举中的值
export const isType = (value: any): value is Type => {
return Object.values(Type).includes(value)
}
}