persona-community-5/.pnpm-store/v3/files/0b/4dba1950c404915363b34c45f99e90d4d6306bd0d3aff001c233974ac7cc8a0260ab6a3f24bd99726bc3bac1c5e0aa2fda135597f1645fd33143a8a8ec0db4
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
362 B
Plaintext

import Promise = require('./index');
declare function register (module?: string, options?: register.Options): register.Register;
declare namespace register {
export interface Register {
Promise: typeof Promise;
implementation: string;
}
export interface Options {
Promise?: typeof Promise;
global?: boolean
}
}
export = register;