rulvar API reference / @rulvar/core / RandPayload
Type Alias: RandPayload
ts
type RandPayload =
| {
subtype: "now";
value: number;
}
| {
key?: string;
subtype: "random";
value: number;
}
| {
subtype: "uuid";
value: string;
};Defined in: packages/core/src/l0/entries.ts:151
Rand-entry payload.