Type alias CompletionsResult

CompletionsResult: {
    completions?: {
        [component: string]: {
            attribs: {
                [attr: string]: {};
            };
            simple: boolean;
        };
    };
    publicDeclarations?: {
        [namespace: string]: {
            [name: string]: ClassDeclaration;
        };
    };
}

Type declaration

  • Optional completions?: {
        [component: string]: {
            attribs: {
                [attr: string]: {};
            };
            simple: boolean;
        };
    }
    • [component: string]: {
          attribs: {
              [attr: string]: {};
          };
          simple: boolean;
      }
      • attribs: {
            [attr: string]: {};
        }
        • [attr: string]: {}
        • simple: boolean
    • Optional publicDeclarations?: {
          [namespace: string]: {
              [name: string]: ClassDeclaration;
          };
      }
      • [namespace: string]: {
            [name: string]: ClassDeclaration;
        }
        • [name: string]: ClassDeclaration