Skip to content

Commit

Permalink
Revise docs
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed Dec 12, 2019
1 parent e5354fc commit 8c39239
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ The CSP rules in a formatted directives string for use in a `Content-Security-Po
<b>Signature:</b>

```typescript
header: string;
readonly header: string;
```
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ The CSP rules used for Kibana.
<b>Signature:</b>

```typescript
rules: string[];
readonly rules: string[];
```
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Specify whether browsers that do not support CSP should be able to use Kibana. U
<b>Signature:</b>

```typescript
strict: boolean;
readonly strict: boolean;
```
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Specify whether users with legacy browsers should be warned about their lack of
<b>Signature:</b>

```typescript
warnLegacyBrowsers: boolean;
readonly warnLegacyBrowsers: boolean;
```
8 changes: 4 additions & 4 deletions src/core/server/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,10 @@ export interface CoreStart {
export class CspConfig {
// Warning: (ae-forgotten-export) The symbol "CspConfigType" needs to be exported by the entry point index.d.ts
constructor(rawCspConfig?: Partial<CspConfigType>);
header: string;
rules: string[];
strict: boolean;
warnLegacyBrowsers: boolean;
readonly header: string;
readonly rules: string[];
readonly strict: boolean;
readonly warnLegacyBrowsers: boolean;
}

// @public
Expand Down

0 comments on commit 8c39239

Please sign in to comment.