bpms_site/.svn/pristine/5d/5dfaddbdf91c2c358e46c4a8bfaabec2324e82e9.svn-base
2025-11-02 16:38:49 +03:30

11 lines
466 B
Plaintext

import type { HTTP_METHOD } from '../../../../web/http';
import type { AppRouteHandlers } from '../module';
/**
* Gets all the method names for handlers that are not considered static.
*
* @param handlers the handlers from the userland module
* @returns the method names that are not considered static or false if all
* methods are static
*/
export declare function getNonStaticMethods(handlers: AppRouteHandlers): ReadonlyArray<HTTP_METHOD> | false;