mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 17:16:20 +00:00
7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
import { ParsedAttribute } from './ParsedAttribute';
|
|
declare type ParseAttributeParams = {
|
|
highlightedValue: string;
|
|
};
|
|
export declare function parseAttribute({ highlightedValue, }: ParseAttributeParams): ParsedAttribute[];
|
|
export {};
|