src/app/shared/interface/IText.ts
Properties |
| fleschReadingScore |
fleschReadingScore:
|
Type : number
|
|
Defined in src/app/shared/interface/IText.ts:5
|
| sentenceCount |
sentenceCount:
|
Type : number
|
|
Defined in src/app/shared/interface/IText.ts:6
|
| statistics |
statistics:
|
Type : IStatistics
|
|
Defined in src/app/shared/interface/IText.ts:7
|
| words |
words:
|
Type : IWordMatch[]
|
|
Defined in src/app/shared/interface/IText.ts:8
|
import { IStatistics } from './IStatistics';
import { IWordMatch } from './IWordMatch';
export interface IText {
fleschReadingScore: number;
sentenceCount: number;
statistics: IStatistics;
words: IWordMatch[];
}