mirror of
https://github.com/certd/certd.git
synced 2026-07-30 09:17:36 +08:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export type SiteInfo = {
|
|
siteUrl: string;
|
|
};
|
|
|
|
export interface ISiteInfoGetter {
|
|
getSiteInfo(): Promise<SiteInfo>;
|
|
}
|