pwa-synergy-api
Version:
synergy application api
13 lines • 361 B
TypeScript
import Choice from './Choice';
import Intent from './Intent';
import Interest from './Interest';
import Option from './Option';
import Pwa from './Pwa';
export default interface LaunchConfig {
pwas: Pwa[];
lists: Map<string, Option[]>;
choices: Choice[];
interests: Interest[];
intents: Intent[];
}
//# sourceMappingURL=LaunchConfig.d.ts.map