We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a811e7 commit 0ef399aCopy full SHA for 0ef399a
src/lwrjs-api.d.ts
@@ -7,5 +7,17 @@
7
8
/* eslint-disable */
9
declare module '@lwrjs/api' {
10
- export * from '@lwrjs/api/build/es/index.js';
+ export interface SitesLocalDevOptions {
11
+ sfCLI: boolean;
12
+ authToken: string;
13
+ open: boolean;
14
+ port: number;
15
+ logLevel: string;
16
+ mode: string;
17
+ siteZip?: string;
18
+ siteDir: string;
19
+ }
20
+
21
+ export function expDev(options: SitesLocalDevOptions): Promise<void>;
22
+ export function setupDev(options: SitesLocalDevOptions): Promise<void>;
23
}
0 commit comments