bismillahcss
Version:
The next-gen utility-first CSS framework for modern, futuristic web development.
28 lines (26 loc) • 579 B
TypeScript
/**
* BismillahCSS Component Registry
* Tracking all available components for dynamic inclusion and discovery.
*/
declare const bRegistry: {
v: string;
components: {
name: string;
type: string;
version: string;
}[];
};
declare const getRegistry: () => {
v: string;
components: {
name: string;
type: string;
version: string;
}[];
};
declare const queryRegistry: (name: string) => {
name: string;
type: string;
version: string;
} | undefined;
export { bRegistry, getRegistry, queryRegistry };