mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
export const UPDATE_INSTALL = 'UPDATE_INSTALL';
|
|
export const UPDATE_AVAILABLE = 'UPDATE_AVAILABLE';
|
|
|
|
export interface UpdateInstallAction {
|
|
type: typeof UPDATE_INSTALL;
|
|
}
|
|
export interface UpdateAvailableAction {
|
|
type: typeof UPDATE_AVAILABLE;
|
|
version: string;
|
|
notes: string | null;
|
|
releaseUrl: string;
|
|
canInstall: boolean;
|
|
}
|
|
|
|
export type UpdateActions = UpdateInstallAction | UpdateAvailableAction;
|