mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Merge pull request #30677 from DefinitelyTyped/fix-mali-dependents
Fix mali dependents
This commit is contained in:
commit
3278a1163b
@ -11,7 +11,7 @@ Ember.Route.extend({
|
||||
});
|
||||
|
||||
Ember.Controller.extend({
|
||||
previousTransition: <Transition | null> null,
|
||||
previousTransition: null as Transition | null,
|
||||
|
||||
actions: {
|
||||
login() {
|
||||
|
||||
@ -10,7 +10,7 @@ Ember.Route.extend({
|
||||
});
|
||||
|
||||
Ember.Controller.extend({
|
||||
previousTransition: <Ember.Transition | null> null,
|
||||
previousTransition: null as Ember.Transition | null,
|
||||
|
||||
actions: {
|
||||
login() {
|
||||
|
||||
2
types/mali-compose/index.d.ts
vendored
2
types/mali-compose/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/malijs/mali-compose
|
||||
// Definitions by: Daniel Byrne <https://github.com/danwbyrne>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
import { Context } from "mali";
|
||||
|
||||
|
||||
8
types/mali-compose/package.json
Normal file
8
types/mali-compose/package.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"grpc": "^1.16.1",
|
||||
"mali": "^0.10.2",
|
||||
"protobufjs": "^6.8.8"
|
||||
}
|
||||
}
|
||||
2
types/mali-onerror/index.d.ts
vendored
2
types/mali-onerror/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/malijs/onerror
|
||||
// Definitions by: Daniel Byrne <https://github.com/danwbyrne>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
import { Context } from "mali";
|
||||
|
||||
|
||||
8
types/mali-onerror/package.json
Normal file
8
types/mali-onerror/package.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"grpc": "^1.16.1",
|
||||
"mali": "^0.10.2",
|
||||
"protobufjs": "^6.8.8"
|
||||
}
|
||||
}
|
||||
@ -313,7 +313,7 @@ var buffersEqual = require('buffer-equal-constant-time'),
|
||||
//ssh2 = require('ssh2'),
|
||||
utils = ssh2.utils;
|
||||
|
||||
var pubKey = utils.genPublicKey(<ssh2_streams.ParsedKey>utils.parseKey(fs.readFileSync('user.pub')));
|
||||
var pubKey = utils.genPublicKey(utils.parseKey(fs.readFileSync('user.pub')) as ssh2_streams.ParsedKey);
|
||||
|
||||
new ssh2.Server({
|
||||
hostKeys: [fs.readFileSync('host.key')]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user