File tree Expand file tree Collapse file tree 21 files changed +208
-189
lines changed
Expand file tree Collapse file tree 21 files changed +208
-189
lines changed Original file line number Diff line number Diff line change 88 CommandLineStringParameter
99} from '@microsoft/ts-command-line' ;
1010import { FileSystem } from '@microsoft/node-core-library' ;
11- import { ApiModel } from '@microsoft/api-extractor' ;
11+ import { ApiModel } from '@microsoft/api-extractor-model ' ;
1212
1313export abstract class BaseAction extends CommandLineAction {
1414 protected inputFolder : string ;
Original file line number Diff line number Diff line change 44import { ApiDocumenterCommandLine } from './ApiDocumenterCommandLine' ;
55import { BaseAction } from './BaseAction' ;
66import { MarkdownDocumenter } from '../documenters/MarkdownDocumenter' ;
7- import { ApiModel } from '@microsoft/api-extractor' ;
7+ import { ApiModel } from '@microsoft/api-extractor-model ' ;
88
99export class MarkdownAction extends BaseAction {
1010 constructor ( parser : ApiDocumenterCommandLine ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { BaseAction } from './BaseAction';
1010
1111import { YamlDocumenter } from '../documenters/YamlDocumenter' ;
1212import { OfficeYamlDocumenter } from '../documenters/OfficeYamlDocumenter' ;
13- import { ApiModel } from '@microsoft/api-extractor' ;
13+ import { ApiModel } from '@microsoft/api-extractor-model ' ;
1414
1515export class YamlAction extends BaseAction {
1616 private _officeParameter : CommandLineFlagParameter ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ import {
4040 ApiReturnTypeMixin ,
4141 ApiDeclaredItem ,
4242 ApiNamespace
43- } from '@microsoft/api-extractor' ;
43+ } from '@microsoft/api-extractor-model ' ;
4444
4545import { CustomDocNodes } from '../nodes/CustomDocNodeKind' ;
4646import { DocHeading } from '../nodes/DocHeading' ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import * as colors from 'colors';
55import * as path from 'path' ;
66import yaml = require( 'js-yaml' ) ;
77
8- import { ApiModel } from '@microsoft/api-extractor' ;
8+ import { ApiModel } from '@microsoft/api-extractor-model ' ;
99import { Text , FileSystem } from '@microsoft/node-core-library' ;
1010
1111import { IYamlTocItem } from '../yaml/IYamlTocFile' ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import {
3232 ApiConstructor ,
3333 ApiFunction ,
3434 ApiReturnTypeMixin
35- } from '@microsoft/api-extractor' ;
35+ } from '@microsoft/api-extractor-model ' ;
3636
3737import {
3838 IYamlApiFile ,
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import {
2222 IResolveDeclarationReferenceResult ,
2323 ApiItem ,
2424 IndentedWriter
25- } from '@microsoft/api-extractor' ;
25+ } from '@microsoft/api-extractor-model ' ;
2626
2727export interface ICustomMarkdownEmitterOptions extends IMarkdownEmitterOptions {
2828 contextApiItem : ApiItem | undefined ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
1717 DocEscapedText ,
1818 DocErrorText
1919} from '@microsoft/tsdoc' ;
20- import { IndentedWriter } from '@microsoft/api-extractor' ;
20+ import { IndentedWriter } from '@microsoft/api-extractor-model ' ;
2121import { InternalError } from '@microsoft/node-core-library' ;
2222
2323export interface IMarkdownEmitterOptions {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { DocTable } from '../../nodes/DocTable';
2020import { DocTableRow } from '../../nodes/DocTableRow' ;
2121import { DocTableCell } from '../../nodes/DocTableCell' ;
2222import { CustomMarkdownEmitter } from '../CustomMarkdownEmitter' ;
23- import { ApiModel , ApiItem } from '@microsoft/api-extractor' ;
23+ import { ApiModel , ApiItem } from '@microsoft/api-extractor-model ' ;
2424
2525test ( 'render Markdown from TSDoc' , ( ) => {
2626 const configuration : TSDocConfiguration = CustomDocNodes . configuration ;
Original file line number Diff line number Diff line change 44import {
55 ApiParameterListMixin ,
66 ApiItem
7- } from '@microsoft/api-extractor' ;
7+ } from '@microsoft/api-extractor-model ' ;
88
99export class Utilities {
1010 /**
You can’t perform that action at this time.
0 commit comments