mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 08:10:24 +01:00
signin
This commit is contained in:
parent
866de46f65
commit
6df0c45cba
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
import { EntityRepository, Repository } from 'typeorm';
|
||||
import { Signin } from '@/models/entities/signin';
|
||||
import { Resolved } from '@/prelude/types';
|
||||
|
||||
export type PackedSignin = Resolved<ReturnType<SigninRepository['pack']>>;
|
||||
|
||||
@EntityRepository(Signin)
|
||||
export class SigninRepository extends Repository<Signin> {
|
||||
|
|
Loading…
Reference in a new issue