Skip to main content
Module

x/dropserver_app/getlibsupport.ts

Library that helps you create Dropserver applications
Latest
File
import type libSupportIface from 'https://deno.land/x/dropserver_lib_support@v0.2.0/mod.ts';
const w = <{["DROPSERVER"]?:libSupportIface}>window;export default function mustGetLibSupport() :libSupportIface { if( w["DROPSERVER"] === undefined ) throw new Error("Dropserver instance not present."); return w["DROPSERVER"];}