export class DefinitionType {
    static FUNCTION = 'function';
    static CONST = 'const';
    static VARIABLE = 'variable';
    static METHOD = 'method';
    static PROPERTY = 'property';
    static CLASS = 'class';
    static IMPORT = 'import';
}