( action: RuntimeWindowAction, )
| 153 | assignments: RuntimePopupEffectAssignment[]; |
| 154 | }; |
| 155 | |
| 156 | interface EmbeddedRuntimeBridgeConstructor { |
| 157 | new (bridgeId: number): EmbeddedRuntimeBridge; |
| 158 | } |
| 159 | |
| 160 | const runtimeGlobal = globalThis as typeof globalThis & { |
| 161 | ShojiRuntimeBridge?: EmbeddedRuntimeBridgeConstructor; |
| 162 | __SHOJI_EMBEDDED_RUNTIME__?: boolean; |
| 163 | Deno?: { |
| 164 | cwd(): string; |
| 165 | env: { |
| 166 | get(key: string): string | undefined; |
| 167 | set(key: string, value: string): void; |
| 168 | delete(key: string): void; |
| 169 | }; |
| 170 | statSync(path: string): unknown; |
no outgoing calls
no test coverage detected