persona-community-5/.pnpm-store/v3/files/ec/86e40d4bb1090525256a3831a2ad5565725cb33c8aa507985e722dbd8ac292fdc0bc0d1f23b9a01ce15d17d37639a899ec8a45fed9c45e6f8cdbefcc1f78b1
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

20 lines
365 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 const VERSION_PATTERN = /^1\.0\.\d+(-.+)?$/;