mirror of https://github.com/Chocobozzz/PeerTube
20 lines
716 B
TypeScript
20 lines
716 B
TypeScript
import { AttributesOnly } from '@shared/typescript-utils'
|
|
import { Model } from 'sequelize'
|
|
|
|
// Thanks to sequelize-typescript: https://github.com/RobinBuschmann/sequelize-typescript
|
|
|
|
export type Diff<T extends string | symbol | number, U extends string | symbol | number> =
|
|
({ [P in T]: P } & { [P in U]: never } & { [ x: string ]: never })[T]
|
|
|
|
export type Omit<T, K extends keyof T> = { [P in Diff<keyof T, K>]: T[P] }
|
|
|
|
export type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]> }
|
|
|
|
export type FilteredModelAttributes<T extends Model<any>> = Partial<AttributesOnly<T>> & {
|
|
id?: number | any
|
|
createdAt?: Date | any
|
|
updatedAt?: Date | any
|
|
deletedAt?: Date | any
|
|
version?: number | any
|
|
}
|