-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: generate new typings using
vue-tsc
Signed-off-by: Vinayak Kulkarni <[email protected]>
- Loading branch information
1 parent
7008138
commit a2df6fd
Showing
9 changed files
with
149 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import type { PropType } from 'vue'; | ||
declare const _default: import('vue').DefineComponent< | ||
{ | ||
layerId: { | ||
type: PropType<string>; | ||
default: string; | ||
required: true; | ||
}; | ||
data: { | ||
type: PropType<any>; | ||
required: true; | ||
}; | ||
options: { | ||
type: ObjectConstructor; | ||
required: true; | ||
}; | ||
before: { | ||
type: PropType<string>; | ||
default: string; | ||
required: false; | ||
}; | ||
}, | ||
void, | ||
unknown, | ||
{}, | ||
{}, | ||
import('vue').ComponentOptionsMixin, | ||
import('vue').ComponentOptionsMixin, | ||
Record<string, any>, | ||
string, | ||
import('vue').VNodeProps & | ||
import('vue').AllowedComponentProps & | ||
import('vue').ComponentCustomProps, | ||
Readonly< | ||
import('vue').ExtractPropTypes<{ | ||
layerId: { | ||
type: PropType<string>; | ||
default: string; | ||
required: true; | ||
}; | ||
data: { | ||
type: PropType<any>; | ||
required: true; | ||
}; | ||
options: { | ||
type: ObjectConstructor; | ||
required: true; | ||
}; | ||
before: { | ||
type: PropType<string>; | ||
default: string; | ||
required: false; | ||
}; | ||
}> | ||
>, | ||
{ | ||
layerId: string; | ||
before: string; | ||
} | ||
>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import { FeatureCollection } from 'geojson'; | ||
import type { PropType } from 'vue'; | ||
declare const _default: import('vue').DefineComponent< | ||
{ | ||
layerId: { | ||
type: PropType<string>; | ||
default: string; | ||
required: true; | ||
}; | ||
data: { | ||
type: PropType< | ||
FeatureCollection< | ||
import('geojson').Geometry, | ||
import('geojson').GeoJsonProperties | ||
> | ||
>; | ||
required: true; | ||
}; | ||
options: { | ||
type: ObjectConstructor; | ||
required: true; | ||
}; | ||
before: { | ||
type: PropType<string>; | ||
default: string; | ||
required: false; | ||
}; | ||
}, | ||
void, | ||
unknown, | ||
{}, | ||
{}, | ||
import('vue').ComponentOptionsMixin, | ||
import('vue').ComponentOptionsMixin, | ||
Record<string, any>, | ||
string, | ||
import('vue').VNodeProps & | ||
import('vue').AllowedComponentProps & | ||
import('vue').ComponentCustomProps, | ||
Readonly< | ||
import('vue').ExtractPropTypes<{ | ||
layerId: { | ||
type: PropType<string>; | ||
default: string; | ||
required: true; | ||
}; | ||
data: { | ||
type: PropType< | ||
FeatureCollection< | ||
import('geojson').Geometry, | ||
import('geojson').GeoJsonProperties | ||
> | ||
>; | ||
required: true; | ||
}; | ||
options: { | ||
type: ObjectConstructor; | ||
required: true; | ||
}; | ||
before: { | ||
type: PropType<string>; | ||
default: string; | ||
required: false; | ||
}; | ||
}> | ||
>, | ||
{ | ||
layerId: string; | ||
before: string; | ||
} | ||
>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters