forked from Yoast/YoastSEO.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
74 lines (65 loc) · 1.55 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { AnalysisWebWorker, AnalysisWorkerWrapper, createWorker } from "./src/worker";
import * as assessments from "./src/assessments";
import * as bundledPlugins from "./src/bundledPlugins";
import * as helpers from "./src/helpers";
import * as markers from "./src/markers";
import * as string from "./src/stringProcessing";
import * as interpreters from "./src/interpreters";
import * as config from "./src/config";
import App from "./src/app";
import Assessor from "./src/assessor";
import ContentAssessor from "./src/contentAssessor";
import SeoAssessor from './src/seoAssessor';
import TaxonomyAssessor from "./src/taxonomyAssessor";
import Pluggable from "./src/pluggable";
import Researcher from "./src/researcher";
import SnippetPreview from "./src/snippetPreview";
import Paper from "./src/values/Paper";
import AssessmentResult from "./src/values/AssessmentResult";
export {
App,
Assessor,
ContentAssessor,
SeoAssessor,
TaxonomyAssessor,
Pluggable,
Researcher,
SnippetPreview,
Paper,
AssessmentResult,
AnalysisWebWorker,
AnalysisWorkerWrapper,
createWorker,
assessments,
bundledPlugins,
config,
helpers,
markers,
string,
interpreters,
};
/*
* Used for backwards compatibility reasons.
* For new exports, please add it as a named dependency above instead.
*/
export default {
App,
Assessor,
ContentAssessor,
TaxonomyAssessor,
Pluggable,
Researcher,
SnippetPreview,
Paper,
AssessmentResult,
AnalysisWebWorker,
AnalysisWorkerWrapper,
createWorker,
assessments,
bundledPlugins,
config,
helpers,
markers,
string,
interpreters,
};