@webflow/functions
v2.2.0-cloud-fn-test.0
Published
Author and caller APIs for Webflow Code Functions.
Maintainers
Keywords
Readme
@webflow/functions
Author and caller APIs for Webflow Code Functions.
Installation
npm i @webflow/functionsUsage
import { declareFunction, type FunctionContext } from "@webflow/functions";
type Params = { offset?: number };
export default declareFunction(async (ctx: FunctionContext<Params>) => {
const { offset = 0 } = ctx.params;
return { offset };
});Code Components call a bundled function with useFunction from @webflow/react.
License
MIT
