Skip to content

Commit

Permalink
fix(DistrictLayer): 静态属性声明错误
Browse files Browse the repository at this point in the history
  • Loading branch information
xyy94813 committed Mar 21, 2024
1 parent 59c0c34 commit c67c013
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/layers/DistrictLayer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export declare class DistrictLayer extends TileLayer {
*/
getStyle(): DistrictLayerStyle | undefined;

static Word: WordLayer;
static Country: CountryLayer;
static Province: ProvinceLayer;
static Word: typeof WordLayer;
static Country: typeof CountryLayer;
static Province: typeof ProvinceLayer;
}

declare class WordLayer extends DistrictLayer {}
Expand Down

0 comments on commit c67c013

Please sign in to comment.