11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
export function useOTAUpdates() {}
|
|
export function useApplyPullRequestOTAUpdate() {
|
|
return {
|
|
tryApplyUpdate: () => {},
|
|
revertToEmbedded: () => {},
|
|
isCurrentlyRunningPullRequestDeployment: false,
|
|
currentChannel: 'web-build',
|
|
pending: false,
|
|
}
|
|
}
|