1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-19 17:53:14 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-05-14 23:40:11 -04:00
parent ec049edfdf
commit 4b5bab3c0e
15 changed files with 101 additions and 74 deletions

View File

@@ -1,16 +1,16 @@
import { CipherType } from 'jslib/enums/cipherType';
import { CardRequest } from './cardRequest';
import { FieldRequest } from './fieldRequest';
import { IdentityRequest } from './identityRequest';
import { LoginRequest } from './loginRequest';
import { SecureNoteRequest } from './secureNoteRequest';
import { CardRequest } from './cardRequest';
import { IdentityRequest } from './identityRequest';
import { FieldRequest } from './fieldRequest';
import { CipherView } from 'jslib/models/view/cipherView';
export class CipherRequest {
static template(): CipherRequest {
var req = new CipherRequest();
const req = new CipherRequest();
req.type = CipherType.Login;
req.folderId = null;
req.organizationId = null;