UNPKG

@ginstone/nga-api

Version:

39 lines (38 loc) 655 B
import { NgaPhpApi } from "./NgaPhpApi"; export declare enum NgaLinkType { /** * 主题 */ TOPIC = "tid", /** * 合集 */ COL = "stid", /** * 版面 */ FORUM = "fid", /** * 回复 */ REPLY = "pid" } export declare enum NgaLinkTypeName { /** * 主题 */ TOPIC = "\u4E3B\u9898", /** * 合集 */ COL = "\u5408\u96C6", /** * 版面 */ FORUM = "\u7248\u9762", /** * 回复 */ REPLY = "\u56DE\u590D" } export declare const findType: (api?: NgaPhpApi, queryParam?: Map<String, String>) => NgaLinkTypeName | undefined;