@@ -8,17 +8,17 @@ This should be used as early as possible in your application startup code.
88
99### new VelopackApp()
1010
11- > ** new VelopackApp** (): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
11+ > ** new VelopackApp** (): ` VelopackApp `
1212
1313#### Returns
1414
15- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
15+ ` VelopackApp `
1616
1717## Methods
1818
1919### onAfterInstallFastCallback()
2020
21- > ** onAfterInstallFastCallback** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
21+ > ** onAfterInstallFastCallback** (` callback ` ): ` VelopackApp `
2222
2323WARNING: FastCallback hooks are run during critical stages of Velopack operations.
2424Your code will be run and then the process will exit.
@@ -33,13 +33,13 @@ Only supported on windows; On other operating systems, this will never be called
3333
3434#### Returns
3535
36- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
36+ ` VelopackApp `
3737
3838***
3939
4040### onAfterUpdateFastCallback()
4141
42- > ** onAfterUpdateFastCallback** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
42+ > ** onAfterUpdateFastCallback** (` callback ` ): ` VelopackApp `
4343
4444WARNING: FastCallback hooks are run during critical stages of Velopack operations.
4545Your code will be run and then the process will exit.
@@ -54,13 +54,13 @@ Only supported on windows; On other operating systems, this will never be called
5454
5555#### Returns
5656
57- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
57+ ` VelopackApp `
5858
5959***
6060
6161### onBeforeUninstallFastCallback()
6262
63- > ** onBeforeUninstallFastCallback** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
63+ > ** onBeforeUninstallFastCallback** (` callback ` ): ` VelopackApp `
6464
6565WARNING: FastCallback hooks are run during critical stages of Velopack operations.
6666Your code will be run and then the process will exit.
@@ -75,13 +75,13 @@ Only supported on windows; On other operating systems, this will never be called
7575
7676#### Returns
7777
78- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
78+ ` VelopackApp `
7979
8080***
8181
8282### onBeforeUpdateFastCallback()
8383
84- > ** onBeforeUpdateFastCallback** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
84+ > ** onBeforeUpdateFastCallback** (` callback ` ): ` VelopackApp `
8585
8686WARNING: FastCallback hooks are run during critical stages of Velopack operations.
8787Your code will be run and then the process will exit.
@@ -96,13 +96,13 @@ Only supported on windows; On other operating systems, this will never be called
9696
9797#### Returns
9898
99- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
99+ ` VelopackApp `
100100
101101***
102102
103103### onFirstRun()
104104
105- > ** onFirstRun** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
105+ > ** onFirstRun** (` callback ` ): ` VelopackApp `
106106
107107This hook is triggered when the application is started for the first time after installation.
108108
@@ -114,13 +114,13 @@ This hook is triggered when the application is started for the first time after
114114
115115#### Returns
116116
117- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
117+ ` VelopackApp `
118118
119119***
120120
121121### onRestarted()
122122
123- > ** onRestarted** (` callback ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
123+ > ** onRestarted** (` callback ` ): ` VelopackApp `
124124
125125This hook is triggered when the application is restarted by Velopack after installing updates.
126126
@@ -132,7 +132,7 @@ This hook is triggered when the application is restarted by Velopack after insta
132132
133133#### Returns
134134
135- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
135+ ` VelopackApp `
136136
137137***
138138
@@ -151,7 +151,7 @@ In some circumstances it may terminate/restart the process to perform tasks.
151151
152152### setArgs()
153153
154- > ** setArgs** (` args ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
154+ > ** setArgs** (` args ` ): ` VelopackApp `
155155
156156Override the command line arguments used by VelopackApp. (by default this is env::args().skip(1))
157157
@@ -163,13 +163,13 @@ Override the command line arguments used by VelopackApp. (by default this is env
163163
164164#### Returns
165165
166- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
166+ ` VelopackApp `
167167
168168***
169169
170170### setAutoApplyOnStartup()
171171
172- > ** setAutoApplyOnStartup** (` autoApply ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
172+ > ** setAutoApplyOnStartup** (` autoApply ` ): ` VelopackApp `
173173
174174Set whether to automatically apply downloaded updates on startup. This is ON by default.
175175
@@ -181,13 +181,13 @@ Set whether to automatically apply downloaded updates on startup. This is ON by
181181
182182#### Returns
183183
184- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
184+ ` VelopackApp `
185185
186186***
187187
188188### setLocator()
189189
190- > ** setLocator** (` locator ` ): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
190+ > ** setLocator** (` locator ` ): ` VelopackApp `
191191
192192VelopackLocator provides some utility functions for locating the current app important paths (eg. path to packages, update binary, and so forth).
193193
@@ -199,16 +199,16 @@ VelopackLocator provides some utility functions for locating the current app imp
199199
200200#### Returns
201201
202- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
202+ ` VelopackApp `
203203
204204***
205205
206206### build()
207207
208- > ` static ` ** build** (): [ ` VelopackApp ` ] ( Class.VelopackApp.md )
208+ > ` static ` ** build** (): ` VelopackApp `
209209
210210Build a new VelopackApp instance.
211211
212212#### Returns
213213
214- [ ` VelopackApp ` ] ( Class.VelopackApp.md )
214+ ` VelopackApp `
0 commit comments