Convert lib/actions/local/index.coffee to typescript

Change-type: patch
This commit is contained in:
Pagan Gazzard 2020-04-23 11:00:06 +01:00
parent 9447195c26
commit da5e26f37e

View File

@ -1,5 +1,5 @@
###
Copyright 2017 Balena
/*
Copyright 2017-2020 Balena Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -12,7 +12,7 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
###
*/
exports.configure = require('./configure').configure
exports.flash = require('./flash').flash
export { configure } from './configure';
export { flash } from './flash';