UNPKG

@plone/types

Version:

Plone's Types Package

27 lines (24 loc) 414 B
interface UpgradeSteps { [step: string]: Array<{ id: string; title: string; }>; } export interface GetUpgradeResponse { '@id': string; upgrade_steps: UpgradeSteps; versions: { fs: string; instance: string; }; } export interface RunUpgradeResponse { '@id': string; dry_run: boolean; report: string; upgraded: boolean; versions: { fs: string; instance: string; }; }