mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
/**
|
|
* Prints hosting instructions after the project is built.
|
|
*/
|
|
declare function printHostingInstructions(
|
|
appPackage: object,
|
|
publicUrl: string,
|
|
publicPath: string,
|
|
buildFolder: string,
|
|
useYarn: boolean,
|
|
): void;
|
|
|
|
export = printHostingInstructions;
|