UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

25 lines (24 loc) 547 B
import { StringObject } from "../interface/object"; export interface Modules { [key: string]: { name: string; alias: string; propsName: string; content: string; }; } export interface ParseResult { name: string; attributes: StringObject; attributeValue: string; content: string; file?: string; input: string; } export interface ImportedModules { filePath: string; components: string[]; defaultModule: string; defaultAlias: string; componentsAlias: StringObject; }