oksy 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oksy",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "The OKSY framework",
5
5
  "main": "library.js",
6
6
  "typings": "./types/src/library.pub.d.ts",
@@ -11,6 +11,10 @@
11
11
  "author": "DigitalByAli",
12
12
  "license": "SEE LICENSE IN LICENCE.md",
13
13
  "homepage": "https://github.com/DigitalByAli/OKSY#readme",
14
+ "keywords": [
15
+ "oksy",
16
+ "typescript"
17
+ ],
14
18
  "dependencies": {
15
19
  "knex": "^2.3.0",
16
20
  "sqlite3": "^5.1.2",
@@ -11,7 +11,7 @@ export declare abstract class BasePage {
11
11
  visitedUrl: string;
12
12
  URL: string;
13
13
  abstract view(...args: any[]): any[];
14
- init?(...args: any[]): boolean;
14
+ init?(...args: any[]): void | boolean;
15
15
  watchStoppers: WatchStopHandle[];
16
16
  state: {
17
17
  [key: string]: any;
@@ -22,7 +22,7 @@ export declare type DataTablePage = {
22
22
  };
23
23
  export declare type DataTableAction = {
24
24
  icon: GoogleIconType;
25
- bulkAction: boolean;
25
+ bulkAction?: boolean;
26
26
  label: string;
27
27
  onClick: (options: {
28
28
  refresh: () => void;
@@ -1 +0,0 @@
1
- export declare function Fingerprint(userAgent: string): string;
@@ -1,3 +0,0 @@
1
- export declare function UseSearch(query: string): {
2
- search: (haystack: string) => boolean;
3
- };