7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
|
import type {IAbstract} from './IAbstract'
|
||
|
|
||
|
export interface ICaldavToken extends IAbstract {
|
||
|
id: number;
|
||
|
|
||
|
created: Date;
|
||
|
}
|