longcelot-sheet-db
Version:
Google Sheets-backed staging database adapter for Node.js with schema-first design
11 lines • 389 B
TypeScript
type ActorNameSource = {
name?: string;
role?: string;
} | string;
/**
* Resolves the actor identifier from an ActorConfig entry, preferring `name` over the
* deprecated `role` field. Config entries may also be a bare string (shorthand actor name).
*/
export declare function resolveActorName(actor: ActorNameSource): string;
export {};
//# sourceMappingURL=actorConfig.d.ts.map