Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
23 lines
640 B
Plaintext
23 lines
640 B
Plaintext
export type CompareOption = {
|
|
label: React.ReactNode | string;
|
|
value: string;
|
|
};
|
|
export type VersionPill = {
|
|
id: string;
|
|
Label: React.ReactNode;
|
|
};
|
|
export type DefaultVersionsViewProps = {
|
|
canUpdate: boolean;
|
|
modifiedOnly: boolean;
|
|
RenderedDiff: React.ReactNode;
|
|
selectedLocales: string[];
|
|
versionFromCreatedAt?: string;
|
|
versionFromID?: string;
|
|
versionFromOptions: CompareOption[];
|
|
versionToCreatedAt?: string;
|
|
versionToCreatedAtFormatted: string;
|
|
VersionToCreatedAtLabel: React.ReactNode;
|
|
versionToID?: string;
|
|
versionToStatus?: string;
|
|
};
|
|
//# sourceMappingURL=types.d.ts.map |