persona-community-5/.pnpm-store/v3/files/48/53a746c47c22dff3616ae4d0408a179c4de71753726cc90fcabbde086ae0a361b8c29d25858c51795b0bc55b756a9780a8f7cbdd8f49d00cfe31463f61e694
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
377 B
Plaintext

export interface InfoObject {
title: string;
version: string;
}
export interface ActionObject {
target: string;
description?: string;
update?: unknown;
remove?: boolean;
}
export interface Overlay1Definition {
overlay: '1.0.0';
info: InfoObject;
extends?: string;
actions: ActionObject[];
}
export declare const VERSION_PATTERN: RegExp;