13 lines
552 B
TypeScript
13 lines
552 B
TypeScript
/// <reference types="node" />
|
|
import type { IncomingMessage } from 'http';
|
|
import type { BaseNextRequest } from '../base-http';
|
|
import type { NextRequest } from '../web/exports';
|
|
export declare function getServerActionRequestMetadata(req: IncomingMessage | BaseNextRequest | NextRequest): {
|
|
actionId: string | null;
|
|
isURLEncodedAction: boolean;
|
|
isMultipartAction: boolean;
|
|
isFetchAction: boolean;
|
|
isServerAction: boolean;
|
|
};
|
|
export declare function getIsServerAction(req: IncomingMessage | BaseNextRequest | NextRequest): boolean;
|