@ginstone/nga-api
Version:
24 lines (23 loc) • 404 B
TypeScript
export declare enum NgaPhpApi {
/**
* 查询主题
*/
thread = "thread.php",
/**
* 查询主题内容
*/
read = "read.php",
/**
* 综合操作
*/
nuke = "nuke.php",
/**
* 版面操作
*/
forum = "forum.php",
/**
* 回复
*/
post = "post.php"
}
export declare const findApi: (url: string) => NgaPhpApi | undefined;