9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
import type { LocaleString } from './LocaleString';
|
|
export type Alerts = {
|
|
install: LocaleString | null;
|
|
uninstall: LocaleString | null;
|
|
restore: LocaleString | null;
|
|
start: LocaleString | null;
|
|
stop: LocaleString | null;
|
|
};
|