tinacms
Version:
> The Fastest Way to Edit Next.js Content
12 lines (11 loc) • 385 B
TypeScript
/// <reference types="react" />
export interface BranchContextData {
currentBranch: string;
setCurrentBranch: (string: any) => void;
}
export declare const BranchDataProvider: ({ currentBranch, setCurrentBranch, children, }: {
currentBranch: any;
setCurrentBranch: any;
children: any;
}) => JSX.Element;
export declare const useBranchData: () => BranchContextData;