Generator-emitted scaffold (pnpm turbo gen core-package realtime) plus the story-00-precedent coverage repairs (coverage provider devDep, symbols.ts exclude + tested allowlist mirror) and three minimal tests covering generator-emitted realtime code the template suite misses. Squash of 31d85e0 + review-fix cf11b38. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
export interface IRealtimeAuthenticator {
|
|
authenticate(handshake: {
|
|
cookies: Record<string, string>;
|
|
headers: Record<string, string>;
|
|
}): Promise<{ userId: string; roles: string[] } | null>;
|
|
}
|