HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/root/usr/share/node_modules/@types/codemirror/mode/
Upload File :
Current File : //proc/1991111/root/usr/share/node_modules/@types/codemirror/mode/meta.d.ts
import '../';

export interface ModeInfo {
    name: string;
    mime?: string | undefined;
    mimes?: string[] | undefined;
    mode: string;
    file?: RegExp | undefined;
    ext?: string[] | undefined;
    alias?: string[] | undefined;
}

declare module '../' {
    const modeInfo: ModeInfo[];
    function findModeByMIME(mime: string): ModeInfo | undefined;
    function findModeByExtension(ext: string): ModeInfo | undefined;
    function findModeByFileName(filename: string): ModeInfo | undefined;
    function findModeByName(name: string): ModeInfo | undefined;
}