| 123456789101112131415 |
- import type { IPageHasId, HasObjectId } from '@growi/core';
- // Todo: specify more detailed Type
- export type IResShareLinkList = {
- shareLinksResult: any[],
- };
- export type IShareLink = {
- relatedPage: IPageHasId,
- createdAt: Date,
- expiredAt?: Date,
- description: string,
- };
- export type IShareLinkHasId = IShareLink & HasObjectId;
|