aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Dalton <aaron@daltons.ca>2019-02-17 11:39:16 -0700
committerAaron Dalton <aaron@daltons.ca>2019-02-17 11:39:16 -0700
commitec790a9cd311a2d9e0459bceea027dec24c6f009 (patch)
tree66e5082b6329b5ce738e3b8de29699fa900d5e0c
parent3281aced6d0468a00788ff7a8dd3a68da66823c1 (diff)
downloadsvg.js-ec790a9cd311a2d9e0459bceea027dec24c6f009.tar.gz
svg.js-ec790a9cd311a2d9e0459bceea027dec24c6f009.zip
Changed all PolyLine to Polyline, as requested
-rw-r--r--svg.js.d.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index aa09b22..14e0fb1 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -460,7 +460,7 @@ declare namespace svgjs {
marker(position: string, width?: number, height?: number, block?: (marker: Marker) => void): Marker;
marker(position: string, marker: Marker): Marker;
}
- interface PolyLine {
+ interface Polyline {
marker(position: string, width?: number, height?: number, block?: (marker: Marker) => void): Marker;
marker(position: string, marker: Marker): Marker;
}
@@ -703,12 +703,12 @@ declare namespace svgjs {
move(x: number, y: number): this;
size(width: number, height: number): this;
}
- export interface PolyLine extends poly {
- new (): PolyLine;
+ export interface Polyline extends poly {
+ new (): Polyline;
}
- interface Library { PolyLine: PolyLine; }
+ interface Library { Polyline: Polyline; }
interface Container {
- polyline(points: PointArrayAlias): PolyLine;
+ polyline(points: PointArrayAlias): Polyline;
}
export interface Polygon extends poly {
new (): Polygon;
tainers/tomcat7/pom.xml?h=downgrade-snapshot-version-20241105&id=18872108bee129898fa71e8a559db115b5c1562e'>pom.xml
blob: 6951bafc7509af6b534471faa6f3cca376e75eb8 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-servlet-containers-test</artifactId>
        <version>8.14-SNAPSHOT</version>
    </parent>
    <artifactId>vaadin-test-tomcat7-server</artifactId>
    <name>Vaadin Tomcat 7 Test</name>
    <packaging>war</packaging>
    <properties>
        <jetty.skip>true</jetty.skip>
        <tomcat.version>7.0.82</tomcat.version>
        <server.name>tomcat7</server.name>
    </properties>

    <dependencies>
        <!-- UI classes and tests from dependencies -->
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-test-server-ui</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-test-server-tests</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- Server configuration -->
            <plugin>
                <groupId>org.codehaus.cargo</groupId>
                <artifactId>cargo-maven3-plugin</artifactId>
                <configuration>
                    <container>
                        <containerId>tomcat7x</containerId>
                        <artifactInstaller>
                            <groupId>org.apache.tomcat</groupId>
                            <artifactId>tomcat</artifactId>
                            <version>${tomcat.version}</version>
                        </artifactInstaller>
                    </container>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>