25 lines
470 B
TypeScript
25 lines
470 B
TypeScript
|
|
declare module 'js-yaml-loader!*' {
|
|
import { Action } from "src/app/services/notifications.types";
|
|
export interface Button {
|
|
name: string;
|
|
action: Action;
|
|
nextKey?: string;
|
|
}
|
|
|
|
export interface TipUp {
|
|
title: string;
|
|
content: string;
|
|
url?: string;
|
|
urlText?: string;
|
|
buttons?: Button[];
|
|
nextKey?: string;
|
|
}
|
|
export interface HelpTexts {
|
|
[key: string]: TipUp;
|
|
}
|
|
|
|
const content: HelpTexts;
|
|
export default content;
|
|
}
|