add prettier

This commit is contained in:
2022-10-10 17:01:31 +02:00
parent 868b46317d
commit 63478aa887
21 changed files with 152 additions and 93 deletions

View File

@ -1,2 +1,2 @@
export * from './user';
export * from './entity';
export * from "./user";
export * from "./entity";

View File

@ -2,7 +2,7 @@ import { Entity } from "./entity";
export type UserInfo = {
name: string;
}
};
export type User = UserInfo & Entity;