7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
export type FamilyActorContext = {
|
|
id: number;
|
|
phone: string;
|
|
openId: string | null;
|
|
serviceUid: string | null;
|
|
};
|