type.ts 198 B

123456789101112
  1. export type Active = {
  2. key: "frames" | "actions" | "subtitles" | "paths";
  3. ndx: number;
  4. };
  5. export const title = {
  6. actions: "动作",
  7. paths: "路径",
  8. subtitles: "字幕",
  9. frames: "",
  10. };