mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 06:07:55 +00:00
2c46c59a79
This doesn't fix actual usage of image fs, just makes it possible to stop commands that don't use it from failing entirely. Connects-To: #869 Change-Type: patch
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
declare module 'resin-image-fs' {
|
|
import Promise = require('bluebird');
|
|
|
|
export function readFile(options: {}): Promise<string>;
|
|
}
|