vsc-material-but-i-wont-sue.../src/helpers/messages.ts

14 lines
285 B
TypeScript

import {
window as Window
} from 'vscode';
export const MESSAGES = {
INSTALLATION: {
message: 'Thank you for using Material Theme!'
}
};
export const installationMessage = async (): Promise<string> =>
Window.showInformationMessage(
MESSAGES.INSTALLATION.message
);