type alias Deno.StaticForeignLibraryInterface
          
Unstable
A utility type that infers a foreign library interface.
T extends ForeignLibraryInterface
      
    [K in keyof T]: T[K]["optional"] extends true ? StaticForeignSymbol<T[K]> | null : StaticForeignSymbol<T[K]>