@atlaspack/transformer-xml 2.14.21-typescript-b27501580.0 → 2.14.21-typescript-e99c742e9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/XMLTransformer.d.ts +3 -0
- package/lib/atom.d.ts +6 -0
- package/lib/processing-instruction.d.ts +1 -0
- package/lib/rss.d.ts +7 -0
- package/lib/utils.d.ts +2 -0
- package/package.json +3 -3
package/lib/atom.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { MutableAsset, TransformerResult } from '@atlaspack/types';
|
|
2
|
+
import { urlHandler } from './utils';
|
|
3
|
+
export declare function link(element: Element, asset: MutableAsset): void;
|
|
4
|
+
export declare const icon: typeof urlHandler;
|
|
5
|
+
export declare const logo: typeof urlHandler;
|
|
6
|
+
export declare function content(element: Element, asset: MutableAsset, parts: Array<TransformerResult>): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/lib/rss.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { MutableAsset, TransformerResult } from '@atlaspack/types';
|
|
2
|
+
import { urlHandler } from './utils';
|
|
3
|
+
export declare const link: typeof urlHandler;
|
|
4
|
+
export declare const url: typeof urlHandler;
|
|
5
|
+
export declare const comments: typeof urlHandler;
|
|
6
|
+
export declare function enclosure(element: Element, asset: MutableAsset): void;
|
|
7
|
+
export declare function description(element: Element, asset: MutableAsset, parts: Array<TransformerResult>): void;
|
package/lib/utils.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/transformer-xml",
|
|
3
|
-
"version": "2.14.21-typescript-
|
|
3
|
+
"version": "2.14.21-typescript-e99c742e9.0",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"node": ">= 16.0.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@atlaspack/plugin": "2.14.21-typescript-
|
|
19
|
+
"@atlaspack/plugin": "2.14.21-typescript-e99c742e9.0",
|
|
20
20
|
"@xmldom/xmldom": "^0.7.9"
|
|
21
21
|
},
|
|
22
22
|
"type": "commonjs",
|
|
23
23
|
"scripts": {
|
|
24
24
|
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "e99c742e92175ac411d807daf2ba45d5bacebb58"
|
|
27
27
|
}
|