mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import { Environment } from '../src/utils/config';
|
|
|
|
declare global {
|
|
function getMiniflareBindings(): Environment;
|
|
function getMiniflareDurableObjectStorage(
|
|
id: DurableObjectId
|
|
): Promise<DurableObjectStorage>;
|
|
}
|
|
|
|
export {};
|