bpms_site/.svn/pristine/7f/7f85526fb812967710f8c93b45e295bdd04618e6.svn-base
2025-11-02 16:38:49 +03:30

15 lines
576 B
Plaintext

import { NodePath, PluginObj, types as BabelTypes } from 'next/dist/compiled/babel/core';
export declare const EXPORT_NAME_GET_STATIC_PROPS = "getStaticProps";
export declare const EXPORT_NAME_GET_STATIC_PATHS = "getStaticPaths";
export declare const EXPORT_NAME_GET_SERVER_PROPS = "getServerSideProps";
type PluginState = {
refs: Set<NodePath<BabelTypes.Identifier>>;
isPrerender: boolean;
isServerProps: boolean;
done: boolean;
};
export default function nextTransformSsg({ types: t, }: {
types: typeof BabelTypes;
}): PluginObj<PluginState>;
export {};