@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
21 lines (20 loc) • 409 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/**
* DemoCodeAction - interface for Code ShowMore menu
* @interface
*/
export default interface DemoCodeAction {
/**
* label - label of menu item.
* @type string
*/
label: string;
/**
* link - path for redirect.
* @type string
*/
link: string;
}