mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import type { FeatureType, ListUsersQuery } from '@affine/graphql';
|
|
|
|
export type UserType = ListUsersQuery['users'][0];
|
|
export type UserInput = {
|
|
name: string;
|
|
email: string;
|
|
features: FeatureType[];
|
|
};
|