fts.ts 320 B

123456789101112131415161718
  1. import type { ITag } from "./tag";
  2. export interface IFtsData {
  3. book: number;
  4. paragraph: number;
  5. title?: string;
  6. paliTitle: string;
  7. pcdBookId: number;
  8. count: number;
  9. tags?: ITag[];
  10. }
  11. export interface IFtsResponse {
  12. ok: boolean;
  13. message: string;
  14. data: {
  15. rows: IFtsData[];
  16. count: number;
  17. };
  18. }