Zhihui-Platform / client

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
a year ago2 years old
Documentation comment not found for function declaration startCreateSlides
 6header.usePage("幻灯片");
 7header.useFunctions([], "hide");
 8
 9function startCreateSlides() {10  window.zhihui.slides.openCreateSlideWindow();
11  console.log("create");
12}
Documentation comment not found for function declaration exportSlides
14  });
15}
16
17export async function exportSlides(18  dir: string,
19  options: {
20    dark?: boolean;
Documentation comment not found for function declaration buildSlides
 7  });
 8}
 9
10export async function buildSlides(dir: string, npx: string) {11  const script = `${npx} slidev build --download`;
12  execSync(script, {
13    cwd: dir,
Documentation comment not found for function declaration createServer
 1import { exec as $, execSync } from "node:child_process";
 2
 3export async function createServer(dir: string, npx: string) { 4  const script = `${npx} slidev`;
 5  return $(script, {
 6    cwd: dir,
Documentation comment not found for function declaration createProject
18  return json["dist-tags"].latest;
19}
20
21export async function createProject(22  dist: string,
23  projectName: string,
24  theme: string,