/*
 * 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;
}