Remove unused types
This commit is contained in:
parent
d75e2d19dc
commit
2aa4fce1c5
1 changed files with 0 additions and 23 deletions
|
@ -46,33 +46,11 @@ export interface IPostmessage {
|
||||||
origin: string;
|
origin: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IImage {
|
|
||||||
alt: string;
|
|
||||||
height: number;
|
|
||||||
src: string;
|
|
||||||
width: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface ILink {
|
interface ILink {
|
||||||
href: string;
|
href: string;
|
||||||
text: string;
|
text: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IInfoFooter {
|
|
||||||
image: IImage;
|
|
||||||
text: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface IHostSignupInfoConfig {
|
|
||||||
additionalInfoLink?: ILink;
|
|
||||||
additionalParagraphs?: Array<string>;
|
|
||||||
cancelText: string;
|
|
||||||
continueText: string;
|
|
||||||
footer?: IInfoFooter;
|
|
||||||
image?: IImage;
|
|
||||||
title: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface IHostSignupTermsDialogConfig {
|
interface IHostSignupTermsDialogConfig {
|
||||||
acceptText: string;
|
acceptText: string;
|
||||||
termsDocuments: Array<ILink>;
|
termsDocuments: Array<ILink>;
|
||||||
|
@ -82,7 +60,6 @@ interface IHostSignupTermsDialogConfig {
|
||||||
|
|
||||||
export interface IHostSignupConfig {
|
export interface IHostSignupConfig {
|
||||||
domains: Array<string>;
|
domains: Array<string>;
|
||||||
info: IHostSignupInfoConfig;
|
|
||||||
minimizedDialogTitle: string;
|
minimizedDialogTitle: string;
|
||||||
termsDialog: IHostSignupTermsDialogConfig;
|
termsDialog: IHostSignupTermsDialogConfig;
|
||||||
url: string;
|
url: string;
|
||||||
|
|
Loading…
Reference in a new issue