UNPKG

@greenweb/gaw-plugin-netlify-edge

Version:

This plugin provides some useful functions that can be used when setting up the Grid-aware Websites library using Netlify Edge Functions.

15 lines (11 loc) 277 B
import { Context } from "@netlify/edge-functions"; export type netlifyContext = Context; export type locationResponse = { country?: string; lat?: number; lon?: number; status: "success" | "error"; }; export type locationOptions = { mode?: "country" | "latlon"; };