mirror of
https://github.com/ckaczor/HomeStatus.git
synced 2026-02-08 09:38:30 -05:00
Initial commit to GitHub
This commit is contained in:
20
typings/regression.d.ts
vendored
Normal file
20
typings/regression.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
declare module 'regression' {
|
||||
type NumberArray = Array<number>;
|
||||
|
||||
export class Result {
|
||||
equation: Array<NumberArray>;
|
||||
points: Array<NumberArray>;
|
||||
string: string;
|
||||
}
|
||||
|
||||
export class Options {
|
||||
order?: number;
|
||||
precision?: number;
|
||||
}
|
||||
|
||||
export const _default: {
|
||||
linear: (points: Array<NumberArray>, options?: Options) => Result;
|
||||
}
|
||||
|
||||
export default _default;
|
||||
}
|
||||
4
typings/vue-grid-layout.d.ts
vendored
Normal file
4
typings/vue-grid-layout.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
declare module 'vue-grid-layout' {
|
||||
export class GridLayout { }
|
||||
export class GridItem { }
|
||||
}
|
||||
7
typings/vue-highcharts.d.ts
vendored
Normal file
7
typings/vue-highcharts.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
declare module 'vue-highcharts' {
|
||||
export const _default: {
|
||||
install: any;
|
||||
}
|
||||
|
||||
export default _default;
|
||||
}
|
||||
4
typings/vue-shims.d.ts
vendored
Normal file
4
typings/vue-shims.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
declare module "*.vue" {
|
||||
import Vue from "vue";
|
||||
export default Vue;
|
||||
}
|
||||
Reference in New Issue
Block a user